home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
050
/
madtrb9.arc
/
SHOWTIME.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1985-12-12
|
195b
|
11 lines
Program Show_Time;
{$I time.inc }
begin
clrscr;
gotoxy(1,1);
write('Time: hr:min:sec Press any key to quit');
repeat
showtime;
delay(100);
until keypressed;
end.